home *** CD-ROM | disk | FTP | other *** search
- //////////////////////////
- // PageButton
- // by Charles Lloyd
- //////////////////////////
-
-
- //////////////////////////
- // User settable options
- //////////////////////////
- id pageName;
- id buttonImageName;
- id buttonImageComponent;
-
- //////////////////////////
- // Internal state
- //////////////////////////
- id currentComponent;
-
- - awake
- {
- buttonImageName = @"_ButtonPage.gif";
- }
-
- - pageToDisplay
- {
- return [WOApp pageWithName:pageName];
- }
-
- - setPageToDislpay:aValue
- {
- return nil;
- }
-
- - buttonImageComponent
- {
- if (buttonImageComponent) {
- return buttonImageComponent;
- } else {
- return currentComponent;
- }
- }
-
- - buttonImagePath
- {
- id aPath = [NSString stringWithFormat:@"../%@.wo/%@",
- [self buttonImageComponent], buttonImageName];
- return aPath;
- }
-
- - willPrepareForRequest:aRequest inContext:aContext
- {
- currentComponent = [aContext pageName];
- }
-